body {
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
}

i {
  font-style: normal;
}

a {
  outline: none;
}

input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #303133;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.1s ease;
}
input[type="radio"]:disabled {
  cursor: not-allowed !important;
  background-color: #f5f7fa;
  border-color: #e4e7ed;
}


input[type="radio"]:checked {
  border-color: #2296F3;
}

input[type="radio"]::before {
  content: "";
  width: 60%;
  height: 60%;
  background-color: #2296F3;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease-in-out;
}

input[type="radio"]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}

::-webkit-scrollbar {
  height: 8px;
  width: 8px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-clip: content-box;
  background-color: #00000015;
  border-radius: 4px;
  /* border: 2px solid transparent; */
}
